From 0b27f90fb76a2492c17a958b6dd807e6fbbf8030 Mon Sep 17 00:00:00 2001 From: Sebastien Castiel Date: Thu, 7 Dec 2023 16:44:01 -0500 Subject: Titles and navigation --- src/app/groups/[groupId]/edit/page.tsx | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/app/groups/[groupId]/edit') diff --git a/src/app/groups/[groupId]/edit/page.tsx b/src/app/groups/[groupId]/edit/page.tsx index f902428..1fcf225 100644 --- a/src/app/groups/[groupId]/edit/page.tsx +++ b/src/app/groups/[groupId]/edit/page.tsx @@ -1,8 +1,13 @@ import { GroupForm } from '@/components/group-form' import { getGroup, updateGroup } from '@/lib/api' import { groupFormSchema } from '@/lib/schemas' +import { Metadata } from 'next' import { notFound, redirect } from 'next/navigation' +export const metadata: Metadata = { + title: 'Settings', +} + export default async function EditGroupPage({ params: { groupId }, }: { -- cgit v1.3